home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / ccgs < prev    next >
Text File  |  1992-03-28  |  380b  |  19 lines

  1. if ( test -n "$4" ) then
  2.     ./ansi2knr $4 _temp_$$.c
  3.     $1 $2 $3 -c _temp_$$.c
  4.     mv _temp_$$.o `basename $4 .c`.o
  5.     rm -f _temp_$$.c
  6. else
  7. if ( test -n "$3" ) then
  8.     ./ansi2knr $3 _temp_$$.c
  9.     $1 $2 -c _temp_$$.c
  10.     mv _temp_$$.o `basename $3 .c`.o
  11.     rm -f _temp_$$.c
  12. else
  13.     ./ansi2knr $2 _temp_$$.c
  14.     $1 -c _temp_$$.c
  15.     mv _temp_$$.o `basename $2 .c`.o
  16. fi
  17. fi
  18. rm -f _temp_$$.c
  19.